| Visual Basic (Declaration) | |
|---|---|
<ExtensionAttribute()> Public Overloads Shared Function Skip(Of TSource)( _ ByVal source As IEntityQuery(Of TSource), _ ByVal count As Integer _ ) As IEntityQuery(Of TSource) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim source As IEntityQuery(Of TSource) Dim count As Integer Dim value As IEntityQuery(Of TSource) value = EntityQueryExtensions.Skip(Of TSource)(source, count) | |
| C# | |
|---|---|
[ExtensionAttribute()] public static IEntityQuery<TSource> Skip<TSource>( IEntityQuery<TSource> source, int count ) | |
| C++/CLI | |
|---|---|
[ExtensionAttribute()] public: static IEntityQuery<TSource^>^ Skipgeneric<typename TSource> ( IEntityQuery<TSource^>^ source, int count ) | |
Parameters
- source
- count
Type Parameters
- TSource
| C# | Copy Code |
|---|---|
var mgr = new DomainModelEntityManager(); var query = mgr.Customers.OrderBy(c=> c.Id).Skip(10).Take(10); var results = query.Execute(); | |
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family